home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / shadow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-01  |  272 b   |  15 lines

  1. // SHADOW.H   Shadow under the object, at right and bottom,
  2. //            or around it.
  3.  
  4. #ifndef __SHADOW_H_
  5. #define __SHADOW_H_
  6.  
  7. #include <graphics.h>
  8. #include "colors.h"
  9.  
  10. struct Shadow
  11.     {
  12.     void show(rect where, int pixels);
  13.     };
  14.  
  15. #endif __SHADOW_H_